home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / GCC / V2-4-5 / GCC2 / Examples / cc / HelloW++
Text File  |  1994-10-04  |  99b  |  10 lines

  1. #include <iostream.h>
  2.  
  3. int
  4. main(void)
  5.  
  6. {
  7.   cout << "Hello world (from C++)" << endl;
  8.   return 0;
  9. }
  10.